home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / midasdos.mak < prev    next >
Encoding:
Text File  |  1997-01-16  |  1.8 KB  |  74 lines

  1. #*      midasdos.mak
  2. #*
  3. #* Make script for MIDAS Sound System DOS library
  4. #*
  5. #* $Id: midasdos.mak,v 1.3 1997/01/16 18:41:59 pekangas Exp $
  6. #*
  7. #* Copyright 1996,1997 Housemarque Inc.
  8. #*
  9. #* This file is part of the MIDAS Sound System, and may only be
  10. #* used, modified and distributed under the terms of the MIDAS
  11. #* Sound System license, LICENSE.TXT. By continuing to use,
  12. #* modify or distribute this file you indicate that you have
  13. #* read the license and understand and accept it fully.
  14. #*
  15.  
  16.  
  17. CC = wcc386
  18. CCOPTS = -w3 -zdp -zu -oneatx -s -bt=dos -d__WC32__ #-dNOTIMER
  19. ASM = tasm
  20. ASMOPTS = -UT310 -p -m9 -d__WC32__
  21. #ASMOPTS = -UT310 -p -ml -m9 -zi -d__WC32__ -dDEBUG
  22.  
  23. LIBNAME = midasdos.lib
  24. LIBCMDS = midasdos.
  25.  
  26. LIBCMD = wlib -c -n $(LIBNAME) @$(LIBCMDS)
  27.  
  28.  
  29. # These definitions ensure that the includes work OK:
  30. O = obj
  31.  
  32. # Macros for MIDAS includes:
  33. !include mincs.mak
  34.  
  35.  
  36. $(LIBNAME) : midas.obj dsm.obj dsmmix.obj mmem.obj errors.obj \
  37.         mutils.obj dma.obj mixsd.obj postproc.obj pas.obj mglobals.obj \
  38.         sb.obj gmplayer.obj gmpcmds.obj file.obj rawfile.obj loadmod.obj \
  39.         wss.obj dostimer.obj vgatext.obj gus.obj loadxm.obj loads3m.obj \
  40.         vu.obj nosound.obj mconfig.obj gusdac.obj dpmi.obj midasdll.obj \
  41.         midasfx.obj
  42.         $(LIBCMD)
  43.  
  44.  
  45. # Default rules:
  46. .c.obj :
  47.         $(CC) $[* $(CCOPTS)
  48.  
  49. .asm.obj :
  50.         $(ASM) $[* $(ASMOPTS)
  51.  
  52.  
  53. # Dependencies for MIDAS files:
  54. !include mcdeps.mak
  55. !include madeps.mak
  56.  
  57.  
  58.  
  59. #* $Log: midasdos.mak,v $
  60. #* Revision 1.3  1997/01/16 18:41:59  pekangas
  61. #* Changed copyright messages to Housemarque
  62. #*
  63. #* Revision 1.2  1996/09/25 18:36:07  pekangas
  64. #* Added midasdll.obj and midasfx.obj
  65. #*
  66. #* Revision 1.1  1996/06/06 20:34:16  pekangas
  67. #* Initial revision
  68. #*
  69. #* Revision 1.2  1996/05/30 22:38:46  pekangas
  70. #* no changes?
  71. #*
  72. #* Revision 1.1  1996/05/22 20:49:33  pekangas
  73. #* Initial revision
  74. #*